home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / make_iso.bat < prev    next >
DOS Batch File  |  2008-11-21  |  658b  |  29 lines

  1. @ECHO OFF
  2.  
  3. REM  ----------------------------------------------------
  4. REM  Batch file to create bootable ISO in Windows
  5. REM  usage: make_iso.bat c:\new-slax.iso
  6. REM  author: Tomas M. <http://www.linux-live.org>
  7. REM  ----------------------------------------------------
  8.  
  9. if "%1"=="" goto error1
  10. cd ..
  11. set CDLABEL=SLAX
  12.  
  13. slax\tools\WIN\mkisofs.exe @slax\tools\WIN\config -o "%1" -A "%CDLABEL%" -V "%CDLABEL%" .
  14. echo.
  15. echo New ISO should be created now.
  16. goto theend
  17.  
  18. :error1
  19. echo A parameter is required - target ISO file.
  20. echo Example: %0 c:\target.iso
  21. goto theend
  22.  
  23. :error2
  24. echo Error creating the ISO file
  25. goto theend
  26.  
  27. :theend
  28. pause
  29.